<style>
  .header-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2rem;
  }
  
  .header-title {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #2c3e50, #e67e22);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .header-title img {
    width: 50px;
    height: auto;
  }
  
  .gold-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #f9b42c, #d4af37, transparent);
    margin: 0.8rem auto;
    border-radius: 3px;
  }
  
  .date-text {
    color: #e67e22;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
  }
  
  .date-text p {
    text-align: justify;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
  }
  
  .main-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    margin-bottom: 2rem;
  }
  
  .two-columns {
    display: flex;
    flex-wrap: wrap;
  }
  
  .left-gallery {
    flex: 1.2;
    min-width: 280px;
    background: #fefefe;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-image-container {
    width: 100%;
    background: #f0f2f5;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16 / 9;
    cursor: pointer;
  }
  
  .hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  
  .slider-area {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border-radius: 2rem;
    padding: 0.5rem;
  }
  
  .slider-btn {
    background: #2c3e50;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    transition: 0.2s;
    flex-shrink: 0;
  }
  
  .slider-btn:active {
    background: #e67e22;
    transform: scale(0.95);
  }
  
  .thumbnail-viewport {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  
  .thumbnail-viewport::-webkit-scrollbar {
    height: 4px;
  }
  
  .thumb-list {
    display: inline-flex;
    gap: 0.8rem;
    padding: 0.4rem;
  }
  
  .thumb-item {
    width: 80px;
    height: 60px;
    border-radius: 0.8rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: 0.2s;
  }
  
  .thumb-item.active-thumb {
    border-color: #e67e22;
  }
  
  .thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .right-text {
    flex: 0.9;
    min-width: 280px;
    background: #fffbf0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-radius: 0 2rem 2rem 0;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .right-text h1 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #2c3e50, #e67e22);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .right-text h1 img {
    width: 34px;
    height: auto;
  }
  
  .right-text p {
    color: #4a5b66;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: justify;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  
  .right-text p[dir="RTL"] {
    text-align: justify;
    direction: rtl;
  }
  
  .right-text a {
    word-break: break-all;
    word-wrap: break-word;
    display: inline-block;
    max-width: 100%;
    color: #e67e22;
  }
  
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    cursor: pointer;
  }
  
  .modal-overlay.active-modal {
    visibility: visible;
    opacity: 1;
  }
  
  .modal-content {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
  }
  
  .modal-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 1.5rem;
  }
  
  .close-modal {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  @media (max-width: 800px) {
    body {
      padding: 5px;
    }
  
    .two-columns {
      flex-direction: column;
    }
  
    .right-text {
      border-radius: 0 0 2rem 2rem;
      padding: 1rem;
      width: 100%;
      overflow-x: hidden;
    }
  
    .thumb-item {
      width: 65px;
      height: 50px;
    }
  
    .slider-btn {
      width: 40px;
      height: 40px;
      font-size: 1.4rem;
    }
  
    .right-text h1 {
      font-size: 1.2rem;
      justify-content: center;
      text-align: center;
    }
  
    .right-text p {
      font-size: 0.85rem;
      line-height: 1.6;
    }
  }
  
  @media (max-width: 480px) {
    .thumb-item {
      width: 55px;
      height: 45px;
    }
  
    .slider-btn {
      width: 36px;
      height: 36px;
      font-size: 1.2rem;
    }
  
    .right-text h1 {
      font-size: 1rem;
    }
  
    .right-text p {
      font-size: 0.8rem;
    }
  }